home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
IRIX 6.2 Development Libraries
/
SGI IRIX 6.2 Development Libraries.iso
/
dist
/
complib.idb
/
usr
/
share
/
catman
/
p_man
/
cat3
/
complib
/
DGEFA.z
/
DGEFA
Wrap
Text File
|
1996-03-14
|
2KB
|
67 lines
DDDDGGGGEEEEFFFFAAAA((((3333FFFF)))) DDDDGGGGEEEEFFFFAAAA((((3333FFFF))))
NNNNAAAAMMMMEEEE
DGEFA - DGEFA factors a double precision matrix by Gaussian
elimination.
DGEFA is usually called by DGECO, but it can be called directly with a
saving in time if RCOND is not needed. (Time for DGECO) = (1 +
9/N)*(Time for DGEFA) .
SSSSYYYYNNNNOOOOPPPPSSSSYYYYSSSS
SUBROUTINE DGEFA(A,LDA,N,IPVT,INFO)
DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
On Entry
AAAA DOUBLE PRECISION(LDA, N)
the matrix to be factored.
LLLLDDDDAAAA INTEGER
the leading dimension of the array A .
NNNN INTEGER
the order of the matrix A . On Return
AAAA an upper triangular matrix and the multipliers
which were used to obtain it.
The factorization can be written A = L*U where
L is a product of permutation and unit lower
triangular matrices and U is upper triangular.
IIIIPPPPVVVVTTTT INTEGER(N)
an integer vector of pivot indices.
IIIINNNNFFFFOOOO INTEGER
= 0 normal value.
= K if U(K,K) .EQ. 0.0 . This is not an error
condition for this subroutine, but it does
indicate that DGESL or DGEDI will divide by zero
if called. Use RCOND in DGECO for a reliable
indication of singularity. LINPACK. This version dated 08/14/78 .
Cleve Moler, University of New Mexico, Argonne National Lab. Subroutines
and Functions BLAS DAXPY,DSCAL,IDAMAX
PPPPaaaaggggeeee 1111